b84c34bb42dc59531ddc1b08e72fe362aeede40f,src/main/java/com/creativemd/littletiles/common/items/ItemBlockTiles.java,ItemBlockTiles,placeTiles,#World#EntityPlayer#ArrayList#LittleStructure#BlockPos#ItemStack#ArrayList#boolean#EnumFacing#,272
Before Change
}
if(structure != null)
structure.combineTiles();
for (int i = 0; i < soundsToBePlayed.size(); i++) {
world.playSound((EntityPlayer)null, pos, soundsToBePlayed.get(i).getPlaceSound(), SoundCategory.BLOCKS, (soundsToBePlayed.get(i).getVolume() + 1.0F) / 2.0F, soundsToBePlayed.get(i).getPitch() * 0.8F);
After Change
LittleTile tile = iterator.next();
tile.isAllowedToSearchForStructure = true;
}
structure.combineTiles();
}
for (int i = 0; i < soundsToBePlayed.size(); i++) {